ONLINE HELP
 WINDEVWEBDEV AND WINDEV MOBILE

New WINDEV, WEBDEV and WINDEV Mobile 2024 feature!
Help / WLanguage / WLanguage functions / Standard functions / Guided Tour functions
WINDEV
WindowsLinuxUniversal Windows 10 AppJavaReports and QueriesUser code (UMC)
WEBDEV
WindowsLinuxPHPWEBDEV - Browser code
WINDEV Mobile
AndroidAndroid Widget iPhone/iPadIOS WidgetApple WatchMac CatalystUniversal Windows 10 App
Others
Stored procedures
Returns information about a Guided Tour.
Example
GuidedTourGetStarted is GuidedTour
// Opens the Guided Tour only at first launch
IF GuidedTourGetStarted.Info(gtInfoCount) = 0 THEN
GuidedTourGetStarted.Start()
END
GuidedTourGetStarted is GuidedTour
// Opens the Guided Tour no more than once per day, and a maximum of 5 times overall
IF GuidedTourGetStarted.Info(gtInfoDate) < DateSys() _AND_ GuidedTourGetStarted.Info(gtInfoCount) < 5 THEN
GuidedTourGetStarted.Start()
END
// Shows what's new in a version 
WhatsNewTour is GuidedTour
WhatsNewTour.Identifier = "What's new in this version"
WhatsNewTour.Version = 29
IF WhatsNewTour.Info(gtInfoVersion) < 29 THEN
WhatsNewTour.Step[1].Target = EDT_FirstName
WhatsNewTour.Step[1].Title = "New!"
WhatsNewTour.Step[1].Description = "Now, you can enter your first name"
WhatsNewTour.Start()
END
Syntax
<Result> = <Guided Tour>.Info(<Information>)
<Result>: Type of information
Requested information.
<Guided Tour>: GuidedTour variable
Name of the GuidedTour variable that corresponds to the Guided Tour used.
<Information>: Integer constant
Desired information:
gtInfoDateDate the Guided Tour was last viewed on the current computer.
gtInfoCountNumber of times the user has seen the Guided Tour.
gtInfoVersionVersion number of the last Guided Tour viewed by the user.
Business / UI classification: UI Code
Component: wd290mdl.dll
Minimum version required
  • Version 2024
This page is also available for…
Comments
Click [Add] to post a comment

Last update: 12/19/2023

Send a report | Local help